home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / Source / MultiSession 1.04 Source / Core 27⁄June⁄1993 / Audit.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-31  |  443 b   |  20 lines  |  [TEXT/KAHL]

  1. /* Audit.h */
  2.  
  3. #pragma once
  4.  
  5. /* to use this audit-trail generator, include this macro in the prefix */
  6. /* #define AUDIT  defines the audit macros */
  7.  
  8. #ifdef AUDIT
  9.     void    INITAUDIT(void);
  10.     void    ENDAUDIT(void);
  11.     void    AuditPrint(char* Str,...);
  12.     void    AHEXDUMP(char* Ptr, long NumBytes);
  13.     #define APRINT(param) AuditPrint param
  14. #else
  15.     #define INITAUDIT(param)
  16.     #define ENDAUDIT(param)
  17.     #define APRINT(param)
  18.     #define AHEXDUMP(param1,param2)
  19. #endif
  20.